home *** CD-ROM | disk | FTP | other *** search
- function mSelectColor(aintindex)
- {
- if(aintindex < this.arrColors.length && aintindex >= 0)
- {
- this.oColor = new Color(this.oColorDisplay);
- this.oColor.setRGB(this.arrColors[aintindex]);
- this.hexColor = this.arrColors[aintindex];
- }
- }
- function mSelectUp()
- {
- this.intIndex--;
- if(this.intIndex < 0)
- {
- this.intIndex = 0;
- }
- this.mSelectColor(this.intIndex);
- }
- function mSelectDown()
- {
- this.intIndex = this.intIndex + 1;
- if(this.intIndex >= this.arrColors.length)
- {
- this.intIndex = this.arrColors.length - 1;
- }
- this.mSelectColor(this.intIndex);
- }
- this.arrColors = new Array();
- this.arrColors.push(3778254);
- this.arrColors.push(4766150);
- this.arrColors.push(15991129);
- this.arrColors.push(5878308);
- this.arrColors.push(6710886);
- this.arrColors.push(16750848);
- this.arrColors.push(39423);
-